home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / AltiVec Effect / EffectDefinitions.h < prev    next >
Text File  |  1998-03-13  |  737b  |  35 lines

  1. /*
  2.     File:    EffectDefinitions.h
  3.     
  4.     Author:    Dan Crow
  5.     
  6.     Copyright:    © 1997 by Apple Computer, Inc., all rights reserved.
  7.  
  8.     Useful definitions for the sample effect that are used by both the
  9.     effect source code and its resource file, to ensure that these remain
  10.     in sync
  11.  
  12. */
  13.  
  14.  
  15. // resource id numbers for this codec
  16. #define kEffectcdciRes            130
  17. #define kEffectthngRes            130
  18. #define kEffectatmsRes            130
  19. #define kEffectICONRes            130
  20. #define kEffectNameRes            129
  21. #define kEffectDescriptionRes    130
  22. #define kEffectCodeRes            130
  23.  
  24. // PPC versions are + 1
  25. #if TARGET_OS_MAC && TARGET_CPU_PPC
  26.     #define    VERSIONDELTA            1
  27. #else
  28.     #define    VERSIONDELTA            0
  29. #endif
  30.  
  31. // version number of our effect
  32. #define kDimmerEffectVersion        (0x00010000 + VERSIONDELTA)
  33.  
  34.  
  35.